AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones multilingües
  • Overview
  • Principle for developing a multilingual application
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Overview
A multilingual application can be distributed in multiple languages. WINDEV, WEBDEV and WINDEV Mobile take into account the different languages of the application during all the development steps of an application.
Versión mínima requerida
  • Versión 9
Comentarios
Example
//Define Language
IF Language = "Portuguese" //Brasil

LanguageToCharset(languagePortuguese,15)
Nation(nationBrazilianPortuguese)
ChangeCharset(charsetCurrent,languagePortuguese,15)

ELSE IF Language = "English" //Inglaterra

LanguageToCharset(languageEnglish,0)
Nation(nationEnglish)
ChangeCharset(charsetCurrent,languageEnglish,0)

ELSE IF Language = "Spanish" //Espanha

LanguageToCharset(languageSpanish,10)
Nation(nationSpanish)
ChangeCharset(charsetCurrent,languageSpanish,10)

ELSE

LanguageToCharset(languagePortuguese,15)
Nation(nationBrazilianPortuguese)
ChangeCharset(charsetCurrent,languagePortuguese,15)

END
BOLLER
28 04 2017

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local